home *** CD-ROM | disk | FTP | other *** search
- program TimeTrac;
-
- uses
- Forms,
- Timeunit in 'TIMEUNIT.PAS' {MainForm},
- About in 'ABOUT.PAS' {AboutBox},
- Presetun in 'PRESETUN.PAS' {BtnRightDlg},
- Freehrs in 'FREEHRS.PAS' {BtnBottomDlg},
- Previnst in 'PREVINST.PAS';
-
- {$R *.RES}
-
- begin
- if HPrevInst <> 0 then
- begin
- ActivatePreviousInstance;
- Exit;
- end;
- Application.Title := 'OnLineTime Tracker';
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.
-